COVID-19 in Italy. Visuals


(alternatively, see results with full code in Jupyter notebook here)

 


Data source: this GitHubi page

Authors and sources mentioned: Editore/Autore del dataset: Dipartimento della Protezione Civile. Categoria ISO 19115: Salute. Dati forniti dal Ministero della Salute.

Regional data files (Dati per Regione):
  • Struttura file giornaliero: dpc-covid19-ita-regioni-yyyymmdd.csv (dpc-covid19-ita-regioni-20200224.csv)
  • File complessivo: dpc-covid19-ita-regioni.csv
  • File ultimi dati (latest): dpc-covid19-ita-regioni-latest.csv

 


Current data as of the date:
2020-10-13T17:00:00

 

What's in the original dataframe?

Showing all variable names
Out[5]:
Index(['data', 'stato', 'codice_regione', 'denominazione_regione', 'lat',
       'long', 'ricoverati_con_sintomi', 'terapia_intensiva',
       'totale_ospedalizzati', 'isolamento_domiciliare', 'totale_positivi',
       'variazione_totale_positivi', 'nuovi_positivi', 'dimessi_guariti',
       'deceduti', 'casi_da_sospetto_diagnostico', 'casi_da_screening',
       'totale_casi', 'tamponi', 'casi_testati', 'note'],
      dtype='object')

 

Rows for the last 5 days

Out[6]:
data stato codice_regione denominazione_regione lat long ricoverati_con_sintomi terapia_intensiva totale_ospedalizzati isolamento_domiciliare ... variazione_totale_positivi nuovi_positivi dimessi_guariti deceduti casi_da_sospetto_diagnostico casi_da_screening totale_casi tamponi casi_testati note
4888 2020-10-13T17:00:00 ITA 19 Sicilia 38.115697 13.362357 426 44 470 4407 ... 195 334 4708 341 6366.0 3560.0 9926 561166 402751.0 NaN
4889 2020-10-13T17:00:00 ITA 9 Toscana 43.769231 11.255889 218 44 262 6655 ... 413 480 11008 1181 14546.0 4560.0 19106 856638 576101.0 NaN
4890 2020-10-13T17:00:00 ITA 10 Umbria 43.106758 12.388247 68 11 79 1412 ... 121 136 2027 90 1855.0 1753.0 3608 236287 140125.0 NaN
4891 2020-10-13T17:00:00 ITA 2 Valle d'Aosta 45.737503 7.320149 11 3 14 244 ... 33 33 1125 146 1383.0 146.0 1529 31763 21861.0 NaN
4892 2020-10-13T17:00:00 ITA 5 Veneto 45.434905 12.338452 272 33 305 6350 ... 366 485 23435 2226 22334.0 9982.0 32316 2074007 810366.0 NaN

5 rows × 21 columns


 

Variables names into English and their explanation

  • Date : Date
  • HospWithSymptoms : Currently hospitalized patients with symptoms
  • IC : Intensive care
  • HospTotal: Total number of currently hospitalized patients
  • AtHome : Currently at home confinement
  • CurrentlyPositive : Total amount of current positive cases (Hospitalised patients + Home confinement)
  • NewPositives : New amount of positive cases (Actual total amount of current positive cases - total amount of current positive cases of the previous day)
  • Recovered : Recovered
  • Deaths : Deaths
  • TotalCases : Total amount of positive cases
  • NoOfTests : Tests performed

 

(double click and click on legend to select one or multiple regions in the graph)


 

Italy as a whole

Data from all regions aggregated